This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: Archive database needs a new profile doc ~Hal Fezresaterynds 7.Nov.02 04:30 AM a Web browser Notes Client 6.0Windows 98
Profile documents are shy, you need to access them programmatically. As Brett said, Notes Peek is a very execellent tool for viewing the contents of databases -- I used it to compare my old archive and the new one version 6 made, and that's how I hit on the "magic" difference between the two.
I deleted the archive database profile in my archive database with this Lotusscript:
Dim db As New NotesDatabase( "", "A_bwarth.nsf")
Dim prof As NotesDocument
Set prof = db.GetProfileDocument( "archive database profile" )
Call prof.Remove( True )
For my users, I wrote a few more lines of code to check that they are on version 6, check whether they've already run the code before, get the archive profile in their mail db and read it to find their ArchiveServer and ArchivePath, then if they have an archive database, locate and remove its archive database profile.